home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / MailEnclosure / Source.v0.15 / NXGets.h < prev    next >
Text File  |  1995-06-12  |  643b  |  18 lines

  1. #import <streams/streams.h>
  2.  
  3. /*
  4.  * Copyright 1992, Ronin Consulting Inc.
  5.  * $Id: NXGets.h,v 1.2 94/04/10 13:13:01 nwc Exp $
  6.  *
  7.  * NXGets operates on NXStreams and functions similar to gets and fgets. 
  8.  * Like gets it reads a string up to a newline which is replaced by
  9.  * a null character. However, like fgets a maxlength is given which
  10.  * will garentee that no more than n - 1 characters are read.
  11.  * 
  12.  * The first argument is returned, or on EOF a constant pointer
  13.  * NULL is returned. Note, on EOF the first argument may still
  14.  * contain valid data if the file did not end with a newline.
  15.  */
  16.  
  17. char *NXGets(char *buf, int n, NXStream *s);
  18.